41e6706c9438d43a1adda66224fc2e045dfc1fe6,OsmAnd/src/net/osmand/plus/mapcontextmenu/other/ObjectSelectionMenuFragment.java,ObjectSelectionMenuFragment,buildHeader,#View#MenuObject#MapActivity#,142

Before Change


		TextView line2 = (TextView) view.findViewById(R.id.context_menu_line2);
		line2.setText(item.getLocationStr());
		Drawable slIcon = item.getSecondLineIcon();
		if (slIcon != null) {
			line2.setCompoundDrawablesWithIntrinsicBounds(slIcon, null, null, null);
			line2.setCompoundDrawablePadding(dpToPx(5f));
		}
	}

After Change


		TextView line2 = (TextView) view.findViewById(R.id.context_menu_line2);
		line2.setText(item.getLocationStr());
		Drawable slIcon = item.getSecondLineIcon();
		line2.setCompoundDrawablesWithIntrinsicBounds(slIcon, null, null, null);
		line2.setCompoundDrawablePadding(dpToPx(5f));
	}

	@Override